home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Muzyka / Edytory sampli (probek dzwieku) / ZynAddSubFX_2.2.0 / Setup_ZynAddSubFX-2.2.0.exe / source code / Input / OSSMidiIn.C < prev    next >
C/C++ Source or Header  |  2005-03-14  |  3KB  |  116 lines

  1. /*
  2.   ZynAddSubFX - a software synthesizer
  3.  
  4.   OSSMidiIn.C - Midi input for Open Sound System
  5.   Copyright (C) 2002-2005 Nasca Octavian Paul
  6.   Author: Nasca Octavian Paul
  7.  
  8.   This program is free software; you can redistribute it and/or modify
  9.   it under the terms of version 2 of the GNU General Public License 
  10.   as published by the Free Software Foundation.
  11.  
  12.   This program is distributed in the hope that it will be useful,
  13.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.   GNU General Public License (version 2) for more details.
  16.  
  17.   You should have received a copy of the GNU General Public License (version 2)
  18.   along with this program; if not, write to the Free Software Foundation,
  19.   Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  20.  
  21. */
  22.  
  23. #include <stdlib.h>
  24. #include <stdio.h>
  25. #include <sys/types.h>
  26. #include <sys/stat.h>
  27. #include <fcntl.h>
  28. #include <unistd.h>
  29. #include <sys/soundcard.h>
  30.  
  31. #include "OSSMidiIn.h"
  32. #include "../Misc/Util.h"
  33.  
  34. OSSMidiIn::OSSMidiIn(){
  35.     inputok=0;
  36.     midi_handle=open(config.cfg.LinuxOSSSeqInDev,O_RDONLY,0);
  37.     if (midi_handle!=-1) inputok=1;
  38.     
  39.     lastmidicmd=0;
  40.     cmdtype=0;
  41.     cmdchan=0;
  42.  
  43. };
  44.  
  45. OSSMidiIn::~OSSMidiIn(){
  46.     close(midi_handle);
  47. };
  48.  
  49. unsigned char OSSMidiIn::readbyte(){
  50.     unsigned char tmp[4];
  51.     read(midi_handle,&tmp[0],1);
  52.     while (tmp[0]!=SEQ_MIDIPUTC){
  53.     read(midi_handle,&tmp[0],4);
  54.     };
  55.     return(tmp[1]);
  56. };
  57.  
  58. unsigned char OSSMidiIn::getmidibyte(){
  59.     unsigned char b;
  60.     do {
  61.     b=readbyte();
  62.     } while (b==0xfe);//drops the Active Sense Messages
  63.     return(b);
  64. };
  65.  
  66. /*
  67.  * Get the midi command,channel and parameters
  68.  */
  69. void OSSMidiIn::getmidicmd(MidiCmdType &cmdtype,unsigned char &cmdchan,int *cmdparams){
  70.     unsigned char tmp,i;
  71.     if (inputok==0) {
  72.     cmdtype=MidiNull;
  73.     return;
  74.     };
  75.     i=0;
  76.     if (lastmidicmd==0){//asteapta prima data pana cand vine prima comanda midi
  77.     while (tmp<0x80) tmp=getmidibyte();
  78.     lastmidicmd=tmp;
  79.     };
  80.  
  81.     tmp=getmidibyte();
  82.  
  83.     if (tmp>=0x80) {
  84.     lastmidicmd=tmp;
  85.     tmp=getmidibyte();
  86.     };
  87.  
  88.     if ((lastmidicmd>=0x80)&&(lastmidicmd<=0x8f)){//Note OFF
  89.     cmdtype=MidiNoteOFF;
  90.     cmdchan=lastmidicmd%16;
  91.     cmdparams[0]=tmp;//note number
  92.     };
  93.  
  94.     if ((lastmidicmd>=0x90)&&(lastmidicmd<=0x9f)){//Note ON
  95.     cmdtype=MidiNoteON;
  96.     cmdchan=lastmidicmd%16;
  97.     cmdparams[0]=tmp;//note number    
  98.     cmdparams[1]=getmidibyte();//velocity
  99.     if (cmdparams[1]==0) cmdtype=MidiNoteOFF;//if velocity==0 then is note off
  100.     };
  101.     if ((lastmidicmd>=0xB0)&&(lastmidicmd<=0xBF)){//Controllers
  102.     cmdtype=MidiController;
  103.     cmdchan=lastmidicmd%16;
  104.     cmdparams[0]=getcontroller(tmp);
  105.     cmdparams[1]=getmidibyte();
  106.     };
  107.     if ((lastmidicmd>=0xE0)&&(lastmidicmd<=0xEF)){//Pitch Wheel
  108.     cmdtype=MidiController;
  109.     cmdchan=lastmidicmd%16;
  110.     cmdparams[0]=C_pitchwheel;
  111.     cmdparams[1]=(tmp+getmidibyte()*(int) 128)-8192;//hope this is correct
  112.     };
  113. };
  114.  
  115.  
  116.